home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gbRollShoot1, gbRollShoot2, gbRollShoot3
- if rollOver(16) and (gbRollShoot1 <> 1) then
- repeat with i = 12 to 14
- set the visible of sprite i to 1
- end repeat
- set gbRollShoot1 to 1
- else
- if not rollOver(16) and (gbRollShoot1 <> 0) then
- repeat with i = 12 to 14
- set the visible of sprite i to 0
- end repeat
- set gbRollShoot1 to 0
- end if
- end if
- if rollOver(17) and (gbRollShoot2 <> 1) then
- set the visible of sprite 10 to 1
- set gbRollShoot2 to 1
- else
- if not rollOver(17) and (gbRollShoot2 <> 0) then
- set the visible of sprite 10 to 0
- set gbRollShoot2 to 0
- end if
- end if
- if rollOver(18) and (gbRollShoot3 <> 1) then
- repeat with i = 5 to 8
- set the visible of sprite i to 1
- end repeat
- set gbRollShoot3 to 1
- else
- if not rollOver(18) and (gbRollShoot3 <> 0) then
- repeat with i = 5 to 8
- set the visible of sprite i to 0
- end repeat
- set gbRollShoot3 to 0
- end if
- end if
- end
-